home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 176-200 / scopedisk180 / arexxtutorial / more_examples / append.rexx < prev    next >
OS/2 REXX Batch file  |  1995-03-19  |  118b  |  5 lines

  1. /* append -- handles a special case of join. Syntax: 'append a b c' */
  2. parse arg x
  3. x = x || ' as ' ||word(x,1)
  4. join x
  5.